func runtime.isSystemGoroutine

10 uses

	runtime (current package)
		heapdump.go#L358: 	dumpbool(isSystemGoroutine(gp, false))
		mprof.go#L948: 		if readgstatus(fing) != _Gdead && !isSystemGoroutine(fing, false) {
		mprof.go#L1024: 	if isSystemGoroutine(gp1, true) {
		mprof.go#L1101: 		return gp1 != gp && readgstatus(gp1) != _Gdead && !isSystemGoroutine(gp1, false)
		proc.go#L3867: 	if isSystemGoroutine(gp, false) {
		proc.go#L4537: 	if isSystemGoroutine(newg, false) {
		proc.go#L5438: 		if isSystemGoroutine(gp, false) {
		proc.go#L5917: 		return isSystemGoroutine(gp, true)
		traceback.go#L1241: 		if gp == me || gp == curgp || readgstatus(gp) == _Gdead || isSystemGoroutine(gp, false) && level < 2 {
		traceback.go#L1314: func isSystemGoroutine(gp *g, fixed bool) bool {